home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 9,300 to 9,399 / 9300.zip / AOLDLs / Helper Apps (MAC) / HELPER_ URL Runner 3.0 / URL Runner FMP3.sit / URL Runner FMP3 / Reference Scripts / Insert URL from Explorer.tx < prev    next >
Text File  |  1996-09-25  |  430b  |  14 lines

  1. if (is application running "Internet Explorer 2.1") then
  2.     tell application "Internet Explorer 2.1"
  3.         set Earl to GetWindowInfo -1 as list
  4.     end tell
  5.     set NewEarl to item 1 of Earl as string
  6.     set NewWinInfo to item 2 of Earl as string
  7.     tell application "FileMaker Pro"
  8.         set cell "Address" of current record to NewEarl as string
  9.         set cell "Site Name" of current record to NewWinInfo as string
  10.         activate
  11.     end tell
  12. else
  13.     quit
  14. end if